* move github workflows towards cmake.
* update action versions.
* update actions
* add workflow dispatch to all workflows
* remove travis
branches: [ master ]
schedule:
- cron: '27 4 * * 2'
+ workflow_dispatch: ~
jobs:
analyze:
steps:
- name: Checkout repository
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
- uses: github/codeql-action/init@v1
+ uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
- uses: github/codeql-action/autobuild@v1
+ uses: github/codeql-action/autobuild@v2
# âšī¸ Command-line programs to run using the OS shell.
# đ https://git.io/JvXDl
# make release
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v1
+ uses: github/codeql-action/analyze@v2
name: "fedora"
on:
- push:
- branches: [ '**']
- pull_request:
- # The branches below must be a subset of the branches above
- branches: [ master ]
schedule:
- - cron: '27 4 * * 2'
+ - cron: '27 3 * * 2'
+ workflow_dispatch: ~
jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: build_and_test
run: |
branches: [ master ]
schedule:
- cron: '27 4 * * 2'
+ workflow_dispatch: ~
jobs:
macos:
include:
- QT_VERSION: '5.15.2'
XCODE_VERSION: '12.4'
- GENERATOR: qmake
+ GENERATOR: 'Ninja'
RELEASE: false
- QT_VERSION: '6.2.4'
XCODE_VERSION: '12.5.1'
- GENERATOR: qmake
- RELEASE: true
+ GENERATOR: 'qmake'
+ RELEASE: false
- QT_VERSION: '6.2.4'
XCODE_VERSION: '12.5.1'
- GENERATOR: 'Ninja'
+ GENERATOR: 'Xcode'
RELEASE: false
+ - QT_VERSION: '6.2.4'
+ XCODE_VERSION: '12.5.1'
+ GENERATOR: 'Ninja'
+ RELEASE: true
steps:
- name: Checkout repository
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Cache Qt
- uses: actions/cache@v2
+ uses: actions/cache@v3
id: cache
with:
path: ~/Cache
- name: Qt install setup
if: steps.cache.outputs.cache-hit != 'true'
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: '3.9'
./tools/uploadtool/upload_github.sh gui/GPSBabel-*.dmg
- name: 'Upload Artifacts'
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: MacOS_Installer ${{ join(matrix.*) }}
path: gui/GPSBabel-*.dmg
branches: [ master ]
schedule:
- cron: '27 4 * * 2'
+ workflow_dispatch: ~
jobs:
ubuntu:
branches: [ master ]
schedule:
- cron: '27 4 * * 2'
+ workflow_dispatch: ~
jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Cache Qt
- uses: actions/cache@v2
+ uses: actions/cache@v3
id: cache
with:
path: ~/Cache
- name: Install Qt setup(aqt)
if: steps.cache.outputs.cache-hit != 'true'
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: '3.9'
./tools/uploadtool/upload_github.sh bld/gui/GPSBabel-*-Setup.exe
- name: 'Upload Artifacts'
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: Windows_Installer ${{ join(matrix.*) }}
path: |
steps:
- name: Checkout repository
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Cache Qt
- uses: actions/cache@v2
+ uses: actions/cache@v3
id: cache
with:
path: ~/Cache
- name: Install Qt setup(aqt)
if: steps.cache.outputs.cache-hit != 'true'
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: '3.9'
PNAME=./bld/gui/package/gpsbabel.exe GBTEMP=./gbtemp ./test_encoding_utf8 2>&1
- name: 'Upload Artifacts'
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: Windows_Installer ${{ join(matrix.*) }}
path: |
+++ /dev/null
-language: cpp
-
-jobs:
- include:
- - os: linux
- dist: bionic
- services: docker
- compiler: gcc
- env:
- - BUILD_TYPE="docker"
- - DOCKER_IMG="qtio"
- - os: linux
- dist: bionic
- services: docker
- compiler: clang
- env:
- - BUILD_TYPE="docker"
- - DOCKER_IMG="qtio"
- - os: linux
- dist: bionic
- services: docker
- compiler: gcc
- env:
- - BUILD_TYPE="docker"
- - DOCKER_IMG=""
- - os: linux
- dist: bionic
- services: docker
- compiler: gcc
- env:
- - BUILD_TYPE="docker"
- - DOCKER_IMG="focal"
- - DOCKER_SCRIPT="./tools/build_extra_tests"
- - os: linux
- dist: bionic
- services: docker
- compiler: gcc
- env:
- - BUILD_TYPE="docker"
- - DOCKER_IMG="f32"
- #- os: linux
- # dist: xenial
- # compiler: gcc
- # env:
- # - BUILD_TYPE="local"
- # - QT_VERSION="5.9.9" # 5.12.1 vtesto stmsdf fails with valgrind 3.11.0 which is on xenial
- # addons:
- # apt:
- # packages:
- # - expat
- # - fop
- # - valgrind
- # - xsltproc
- # - libxml2-utils
- # - libusb-1.0-0-dev
- # - docbook-xml
- # - docbook-xsl
- # - libgl1-mesa-dev
- # - libxkbcommon-x11-0 # for qt onliner installer 3.2.1
- # cache:
- # directories:
- # - $HOME/Cache
- # timeout: 600
- - os: osx
- compiler: clang
- env:
- - QT_VERSION="5.9.9"
- - QT_INSTALL_METHOD="installer"
- cache:
- directories:
- - $HOME/Cache
- timeout: 600
- - os: osx
- osx_image: xcode10.3
- compiler: clang
- env:
- - QT_VERSION="5.12.10"
- - QT_INSTALL_METHOD="installer"
- cache:
- directories:
- - $HOME/Cache
- timeout: 600
- - os: osx
- osx_image: xcode11.6
- compiler: clang
- env:
- - QT_VERSION="5.15.2"
- - QT_INSTALL_METHOD="artifactory"
- cache:
- directories:
- - $HOME/Cache
- timeout: 600
- - os: linux
- dist: focal
- compiler: gcc
- env:
- - BUILD_TYPE="coverage"
- addons:
- apt:
- packages:
- - gcovr
- - lcov
- - libusb-1.0-0-dev
- - qt5-default
-
-install:
- - if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${BUILD_TYPE}" = "local" ]; then ./tools/travis_install_linux_local ${QT_VERSION} && source ${HOME}/Cache/qt-${QT_VERSION}.env; fi
- - if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./tools/travis_install_osx ${QT_VERSION} ${QT_INSTALL_METHOD} && source ${HOME}/Cache/qt-${QT_VERSION}.env; fi
-
-script:
- - if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${BUILD_TYPE}" = "coverage" ]; then ./tools/travis_script_linux_coverage; fi
- - if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${BUILD_TYPE}" = "docker" ]; then ./tools/travis_script_linux_docker ${DOCKER_IMG} ${DOCKER_SCRIPT}; fi
- - if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${BUILD_TYPE}" = "local" ]; then echo $PATH; ./build_and_test; fi
- - if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./tools/travis_script_osx; fi
-
-after_success:
- - cd ${TRAVIS_BUILD_DIR}
- # only deploy pushes to master or prs that target master. the prs will go to transfr.sh, the pushes go to github.
- - if [ "${TRAVIS_OS_NAME}" = "osx" ] && [ "${QT_VERSION}" = "5.12.10" ] && [ "$TRAVIS_BRANCH" = "master" ]; then bash ./tools/uploadtool/upload.sh gui/GPSBabel-*.dmg; fi
-
-branches:
- except:
- - /^(?i:continuous)$/ # Do not build tags that we create when we upload to GitHub Releases
- - /^(?i:continuous.*windows)$/ # Do not build tags that we create when we upload to GitHub Releases
-